I get the following error when i want to start my vue 3 typescript project:
ERROR Error [ERR_UNSUPPORTED_ESM_URL_SCHEME]: Only file and data URLs are supported by the default ESM loader. On Windows, absolute paths must be valid file:// URLs. Received protocol 'c:'
Error [ERR_UNSUPPORTED_ESM_URL_SCHEME]: Only file and data URLs are supported by the default ESM loader. On Windows, absolute paths must be valid file:// URLs. Received protocol 'c:'
at new NodeError (node:internal/errors:371:5)
at defaultResolve (node:internal/modules/esm/resolve:1016:11)
at ESMLoader.resolve (node:internal/modules/esm/loader:422:30)
at ESMLoader.getModuleJob (node:internal/modules/esm/loader:222:40)
at ESMLoader.import (node:internal/modules/esm/loader:276:22)
at importModuleDynamically (node:internal/modules/cjs/loader:1041:29)
at importModuleDynamicallyWrapper (node:internal/vm/module:437:21)
at importModuleDynamically (node:vm:381:46)
at importModuleDynamicallyCallback (node:internal/process/esm_loader:35:14)
at loadFileConfig (C:\Projects\backify-ui\documentation\node_modules\@vue\cli-service\lib\util\loadFileConfig.js:28:7)
This error occurs since I renamed my vue.config.js to vue.config.mjs. The funny thing is that this project works via gitpod.io but not in phpstorm and vscode.
My vue.config.mjs:
import rehypeHighlight from "rehype-highlight";
export default {
chainWebpack: (config) => {
config.module
.rule("mdx")
.test(/\.mdx?$/)
.use("babel-loader")
.loader("babel-loader")
.options({ plugins: ["@vue/babel-plugin-jsx"] /* Other options… */ })
.end()
.use("@mdx-js/loader")
.loader("@mdx-js/loader")
.options({
jsx: true,
rehypePlugins: [rehypeHighlight] /* otherOptions… */,
})
.end();
},
};
That actually is a bug.
See, they use import() function on a string, that is the result of path.resolve() call. As you have already noticed, the import() function only works with file:// and data:// URLs, but path.resolve() only returns an absolute path (not a URL), which on Windows environment usually starts with the name of the local disk (e.g., C:).
My problem is because my Node.js version is too low. Upgrade to Node.js 16 solved the problem.
I have found a possible workaround!
As @Dima Parzhitsky points out, this seems to be a bug in Vue. The part of Vue containing that bug is the loader for the vue.config.js (or .mjs/.cjs) configuration file. Vue actually provides another option though, you can move the configuration to a "vue":{ ... } block inside of package.json.
As per the Vue Docs, this will limit you to only json-compatible values though and since your config uses functions, this might not be an option for you (unless you can find a way of achieving the same result in a json-compatible way)
For those viewing this who do have json-compatible values though, here's an example from my own project so you know what it should sort-of look like:
original vue.config.js (make sure to delete this file):
module.exports = {
pluginOptions: {
electronBuilder: {
mainProcessFile: 'src/main/background.js',
rendererProcessFile: 'src/renderer/main.js',
externals:['node-pty'],
},
},
css: {
loaderOptions: {
sass: {
additionalData: `@import "@/renderer/assets/globals.scss";`
}
}
}
};
moved inside package.json:
"vue": {
"pluginOptions": {
"electronBuilder": {
"mainProcessFile": "src/main/background.js",
"rendererProcessFile": "src/renderer/main.js",
"externals":["node-pty"]
}
},
"css": {
"loaderOptions": {
"sass": {
"additionalData": "@import '@/renderer/assets/globals.scss';"
}
}
}
}
The whole thing seems to be a bug with the current vue cli configuration and node.js version. For more info check out the comment from @Dima Parzhitsky and @Zhang Buzz.
The best workaround for me was to simply use the @vue/cli@5.0.0-beta.7 in combination with node v16.12.0.
Also i use a vue.config.mjs instead of vue.config.js
Another solution could be to move the whole thing into the package.json, more about this in the comment of @James Batchelor (but i didn't test it)
I had a similar issue but with pm2 node process manager. I am trying to run a nodejs app in cluster mode, but it always ends in the same error code [ERR_UNSUPPORTED_ESM_URL_SCHEME]. This post is the top google result when searching for my issue, so leaving my method of solving it might be helpful to someone.
The solution is to install Windows Subsystem for Linux (WSL)
This allows you to run nodejs in Linux, where the above error can be avoided since the URL scheme would be accepted there. Notice the error message: Only file and data URLs are supported by the default ESM loader. On Windows, absolute paths must be valid file:// URLs. Received protocol 'c:'